home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / shark_attack_2.swf / scripts / DefineSprite_149 / frame_6 / DoAction.as
Text File  |  2012-01-07  |  243b  |  16 lines

  1. _root.s_chomp.start();
  2. if(0 < _root.lives)
  3. {
  4.    _root.score -= int(100 / _root.lives);
  5.    _root.lives--;
  6. }
  7. else
  8. {
  9.    _root.gotoAndStop("gameover");
  10. }
  11. if(_root.score < 0)
  12. {
  13.    _root.score = 0;
  14. }
  15. _root.mascot.gotoAndStop("nada");
  16.